home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / formline.h < prev    next >
C/C++ Source or Header  |  1995-11-01  |  506b  |  23 lines

  1. /*  FORMLINE.H   FormLine is the Line with Carcase
  2.     Coords are TEXT.
  3. */
  4.  
  5. #ifndef __FORMLINE_H_
  6. #define __FORMLINE_H_
  7.  
  8. #include "line.h"
  9. #include "carcase.h"
  10. #include "output.h"
  11.  
  12. class FormLine : public Carcase, public Line
  13.     {
  14.     protected:
  15.         BORDERS border_type;
  16.     public:
  17.         FormLine(BORDERS b_t) { border_type = b_t; }
  18.     void show(loc xy, int len, char* text = 0, int pat = 0);
  19.     void outtextxy(loc xy, int len, char* text, int pat = 0);
  20.  
  21.     };
  22.  
  23. #endif __FORMLINE